summaryrefslogtreecommitdiff
path: root/app/[lng]
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-08-11 00:19:38 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-08-11 00:19:38 +0000
commita383fd2a30f60360ebc0c1b897b3d43cbae178fa (patch)
tree98adaae908465697ad627391e66113dc0694abb3 /app/[lng]
parent71f4e15800b0cf771d1dddab6cc46fc7c2a17c51 (diff)
parentf30678aa2956620177e61cbcc0fb57e9ce6872f1 (diff)
Merge branch 'dujinkim' of https://github.com/DTS-Development/SHI_EVCP into dujinkim
Diffstat (limited to 'app/[lng]')
-rw-r--r--app/[lng]/evcp/(evcp)/docu-list-rule/number-types/page.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/docu-list-rule/number-types/page.tsx b/app/[lng]/evcp/(evcp)/docu-list-rule/number-types/page.tsx
index 6fa010c7..58af176f 100644
--- a/app/[lng]/evcp/(evcp)/docu-list-rule/number-types/page.tsx
+++ b/app/[lng]/evcp/(evcp)/docu-list-rule/number-types/page.tsx
@@ -3,7 +3,7 @@ import { Shell } from "@/components/shell";
import { Skeleton } from "@/components/ui/skeleton";
import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton";
import { NumberTypesTable } from "@/lib/docu-list-rule/number-types/table/number-types-table";
-import { getNumberTypes } from "@/lib/docu-list-rule/number-types/service";
+import { getNumberTypesWithConfigs } from "@/lib/docu-list-rule/number-types/service";
import { InformationButton } from "@/components/information/information-button";
import { searchParamsNumberTypesCache } from "@/lib/docu-list-rule/number-types/validation";
@@ -15,7 +15,7 @@ export default async function IndexPage(props: IndexPageProps) {
const searchParams = await props.searchParams;
const promises = Promise.all([
- getNumberTypes(
+ getNumberTypesWithConfigs(
searchParamsNumberTypesCache.parse(searchParams)
),
]);